home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q0040.dms / q0040.adf / top / makefile.old < prev    next >
Makefile  |  1990-12-06  |  228b  |  18 lines

  1. #
  2. # Makefile for the optimizer
  3. #
  4.  
  5. OBJ =    main.o io.o util.o sym.o func.o branch.o inst.o opcodes.o \
  6.     peep.o health.o data.o
  7.  
  8. CFLAGS = -O
  9.  
  10. xtop.ttp : $(OBJ)
  11.     cc $(OBJ) -o xtop.ttp
  12.  
  13. clean:
  14.     $(RM) *.o
  15.  
  16. clobber:
  17.     $(RM) *.o xtop.ttp
  18.